blob: f150baa90772ec2452150a0a67966d736e6e279b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
game.title = "Demo game";
game.author = "Mike Buland";
game.version = 1;
game.revision = 0;
game.start = <<start>>;
global
{
command: "eat" object
{
display(object);
}
}
function sillyDisplay( txt, extra )
{
display("!~! " + txt + " !~!");
if extra then
{
display("And then some extra!");
}
else
{
display("...no extra for you");
}
}
situation <<start>>
{
setup
{
name = "Bob";
name += " The Man";
display("This is the setup phase for start, " + name);
display( 5 <= 1 );
display( 1 <= 1 );
display( 0 <= 1 );
sillyDisplay( "Hello", true );
if name == "Bob The Man" then
{
display("You are bob");
}
}
enter
{
display('''This is the enter part of the start situation''');
}
}
situation <<stuff>>
{
enter
{
display('''Entered stuff''');
}
}
|